home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Plug-In Power Pack for Netscape Communicator
/
Plug-In Power Pack for Netscape Communicator.iso
/
plugins
/
dataviews
/
dvtools
/
examples
/
fds
/
fdseval
/
vistrfuns.h
< prev
next >
Wrap
C/C++ Source or Header
|
1997-05-08
|
1KB
|
38 lines
/***
***
***/
#ifndef VISTRFUNS_H
#define VISTRFUNS_H
#include "std.h"
/* VI/VIpatmatch.c */
int VIpatmatch V_P_((char lin[], char pat[], BOOLPARAM ignore_case));
/* VI/VIstrbuf.c */
ADDRESS VIsbcreate V_P_((int numchar));
ADDRESS VIsbclone V_P_((ADDRESS sb));
void VIsbdestroy V_P_((ADDRESS sb));
void VIsbset_string V_P_((ADDRESS sb, char *string));
void VIsbappend_string V_P_((ADDRESS sb, char *string));
void VIsbappend_char V_P_((ADDRESS sb, int c));
char *VIsbget_string V_P_((ADDRESS sb));
int VIsbstrlen V_P_((ADDRESS sb));
void VIsbattach_string V_P_((ADDRESS sb, char *string));
char *VIsbremove_string V_P_((ADDRESS sb));
char *VIsbscan_token V_P_((ADDRESS sb, char *delimiters));
void VIsbscan_reset V_P_((ADDRESS sb));
int VIsbscan_get_delim V_P_((ADDRESS sb));
char *VIsbscan_get_remainder V_P_((ADDRESS sb));
/* VI/VIstring.c */
char *VIstrclone V_P_((char *str));
/* -- in std.h: int VIstrcmp V_P_((char *s1, char *s2)); */
char *VIstrcat V_P_((char *s1, char *s2));
char *VIstrrev V_P_((char *string));
BOOLPARAM VIstrcmp_r2 V_P_((char *string1, char *string2));
#endif /*VISTRFUNS_H*/